WPF and Silverlight Edition Basic Library > Combo Box > ComboBox Features > Drop-Down List > Launching with the Drop-Down List Open |
To launch the C1ComboBox with its drop-down list open, set the IsDropDownOpen property to True.
Complete the following steps:
XAML Copy Code <c1:C1ComboBox HorizontalAlignment="Left" Width="249" IsDropDownOpen="True">
Complete the following steps:
Visual Basic Copy Code C1ComboBox1.IsDropDownOpen = True
C# Copy CodeC1ComboBox1.IsDropDownOpen = true;
Complete the following steps: